projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
36689d1
)
checkbutton: Initialize accessible state
author
Matthias Clasen
<mclasen@redhat.com>
Mon, 27 Jul 2020 22:07:26 +0000
(18:07 -0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Tue, 28 Jul 2020 01:18:09 +0000
(21:18 -0400)
The checked state of checkbuttons should be FALSE
initially, not UNDEFINED.
gtk/gtkcheckbutton.c
patch
|
blob
|
history
diff --git
a/gtk/gtkcheckbutton.c
b/gtk/gtkcheckbutton.c
index 802355d9d44575afb57bfab595ce5ff550ba9823..6c5dcdc375938e0ed66a29780b7e099501910e31 100644
(file)
--- a/
gtk/gtkcheckbutton.c
+++ b/
gtk/gtkcheckbutton.c
@@
-293,6
+293,7
@@
gtk_check_button_init (GtkCheckButton *check_button)
priv->draw_indicator = TRUE;
draw_indicator_changed (check_button);
gtk_check_button_update_node_state (GTK_WIDGET (check_button));
+ update_accessible_state (check_button);
}
/**